home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue24 / tiptrix / LISTING1.PAS next >
Encoding:
Pascal/Delphi Source File  |  1997-07-21  |  258 b   |  11 lines

  1. function TrectToCommaDelimStr(const r: trect): string;
  2. begin
  3.   result := IntToStr(r.left)+Æ,Æ+IntToSTr(r.top)+Æ,Æ+
  4.     IntToStr(r.right)+Æ,Æ+IntToStr(r.bottom);
  5. end;
  6.  
  7. function DblQuoteStr(const s : string): string;
  8. begin
  9.   result := æ"Æ+s+Æ"Æ
  10. end;
  11.